-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.18 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@cyclic/molecule-progress",
"version": "0.0.0",
"author": "Frederik Krautwald",
"description": "A Material Design progress.",
"license": "MIT",
"bugs": "https://github.com/CyclicMaterials/molecule-progress/issues",
"repository": {
"type": "git",
"url": "https://github.com/CyclicMaterials/molecule-progress"
},
"keywords": [
"cyclejs",
"progress",
"Material Design"
],
"directories": {
"doc": "./doc",
"lib": "./lib"
},
"files": [
"lib/"
],
"main": "./lib/index.js",
"browserify": {
"transform": [
"babelify"
]
},
"dependencies": {
"@cycle/dom": "8.0.0-rc4",
"@cyclic/atom-color": "1.0.0",
"@cyclic/atom-layout": "1.0.2",
"@cyclic/atom-range-behavior": "0.1.0",
"rx": "4.0.7"
},
"devDependencies": {
"@cycle/core": "6.0.0-rc2",
"@cyclic/template-demo-pages": "1.0.1",
"babel": "5.8.29",
"babelify": "6.4.0",
"browserify": "12.0.1",
"chai": "3.4.1",
"chai-virtual-dom": "1.0.0",
"cli-release": "1.0.3",
"eslint": "1.0.0",
"eslint-config-cycle": "3.1.0",
"eslint-plugin-cycle": "1.0.2",
"eslint-plugin-no-class": "0.1.0",
"fast.js": "0.1.1",
"glob": "6.0.1",
"markdox": "0.1.10",
"minifyify": "7.1.0",
"mocha": "2.3.4",
"postcss": "5.0.12",
"postcss-cli": "2.3.2",
"postcss-cssnext": "2.2.0",
"postcss-custom-properties": "5.0.0",
"postcss-import": "7.1.3",
"rx-dom-concurrency": "^7.0.3",
"validate-commit-message": "3.0.1",
"virtual-dom": "2.1.1"
},
"scripts": {
"lint": "eslint src/**/.",
"test-js": "mocha --compilers js:babel/register 'src/**/*_test.js'",
"test-css": "npm run demo-css",
"test": "npm run test-css && npm run lint && npm run test-js",
"demo-css": "postcss -c postcss.config.json demo/index.css -o demo/styles.css",
"demo-browserify": "browserify demo/index.js -d -p [ minifyify --no-map ] -o demo/bundle.js",
"predemo": "rm -f demo/bundle.js demo/styles.css",
"demo": "npm run lint && npm run demo-css && npm run demo-browserify",
"deps": "npm install && npm prune && validate-commit-msg",
"start": "npm run deps",
"predoc": "rm -rf doc/ && mkdir -p doc",
"doc": "node ./scripts/make-api-doc.js",
"copy-css-raw": "for filename in src/**/*.css; do basename=${filename#src/}; cp ${filename} lib/${basename%.css}_raw.css; done",
"compile-css-each": "for filename in src/**/*.css; do basename=${filename#src/}; postcss -c postcss.config.json ${filename} -o lib/${basename}; cp ${filename} lib/${basename%.css}_raw.css; done",
"compile-css-single": "postcss -c postcss.config.json src/index.css -o lib/index.css",
"compile-css": "npm run compile-css-single && npm run compile-css-each",
"compile-js": "babel -d lib/ src/ && rm -rf lib/**/*_test.js",
"precompile": "rm -rf lib/ && mkdir -p lib",
"compile": "npm run compile-js && npm run compile-css",
"prepublish": "npm run compile",
"patch": "git checkout master && release patch && npm publish --access=public",
"minor": "git checkout master && release minor && npm publish --access=public",
"major": "git checkout master && release major && npm publish --access=public"
}
}