-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@internet/spring",
"version": "0.0.3",
"description": "Framerate-independant spring physics",
"source": "lib/index.js",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"build"
],
"repository": "[email protected]:pqml/spring.git",
"author": "pqml <[email protected]>",
"license": "MIT",
"scripts": {
"test": "tape -r esm test/index.js | tap-spec",
"lint": "eslint lib/** test/**",
"es": "es-check --module es5 lib/**/*.js",
"build": "microbundle -f es --compress false --externals none",
"demo": "microbundle -i demo/demo.js -f umd -o demo --target browser",
"demo:serve": "npm run demo -- -w & light-server -s demo -p 8080 -w demo/**/*",
"demo:deploy": "npm run demo && ghp demo -f",
"docs": "jsdoc2md --template README.hbs --heading-depth 3 --separators --files lib/*.js > README.md",
"prepublishOnly": "npm run lint && npm run test && npm run docs && npm run build && npm run demo:deploy"
},
"devDependencies": {
"@internet/eslint-config": "0.0.4",
"@internet/raf": "^0.2.1",
"dat.gui": "^0.7.3",
"es-check": "^5.0.0",
"esm": "^3.0.84",
"ghp": "^1.3.1",
"jsdoc-to-markdown": "^4.0.1",
"light-server": "^2.6.0",
"microbundle": "^0.7.0",
"raf": "^3.4.1",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"tape-promise": "^4.0.0"
},
"dependencies": {},
"eslintConfig": {
"extends": "@internet"
}
}